Scroll Progress Bar

Flash Cards


What is the result of multiplying two matrices together in C?


Matrix

What is the operation used for matrix multiplication in C?


Multiply

What is the time complexity of matrix multiplication in C?


Cubic

What is the result of swapping rows and columns in a matrix?


Transpose

What is the main operation performed in matrix transpose?


Swapping

What is the shape of a matrix after performing transpose?


Rectangular

What is a string in C?


Array

What character is used to terminate a string in C?


Null

What library should you include for string functions in C?


string.h

How do you compare two strings in C?


strcmp

What C function is used to find the length of a string?


strlen

What C library function is used to find the length of a string?


strlen

Which function is used to concatenate two strings in C?


strcat

What C function is used to copy one string to another?


strcpy

Which function is used to compare two strings in C for equality?


strcmp